home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / listings / v_02_07 / 2n07044b < prev    next >
Text File  |  1991-06-01  |  930b  |  42 lines

  1. /*
  2.  * Resource file for the Animated Cursor Demo Program
  3.  * Written by Alex Leavens, for ShadowCat Technologies
  4.  */
  5.  
  6. #include <WINDOWS.H>
  7. #include "CURSOR.H"
  8.  
  9. /*
  10.  * Cursor resources for our animated cursor
  11.  */
  12.  
  13. WATCH1 CURSOR WATCH1.CUR
  14. WATCH2 CURSOR WATCH2.CUR
  15. WATCH3 CURSOR WATCH3.CUR
  16. WATCH4 CURSOR WATCH4.CUR
  17. WATCH5 CURSOR WATCH5.CUR
  18. WATCH6 CURSOR WATCH6.CUR
  19. WATCH7 CURSOR WATCH7.CUR
  20. WATCH8 CURSOR WATCH8.CUR
  21.  
  22. CURSES ICON   CURSOR.ICO
  23.  
  24. /*
  25.  * Menu resources
  26.  */
  27.    
  28. CURSOR MENU
  29.     BEGIN
  30.     POPUP "File" 
  31.         BEGIN
  32.             MENUITEM  "Animate", IDM_Animate
  33.             MENUITEM SEPARATOR
  34.             MENUITEM  "Speed 1 (1x)", IDM_Speed1
  35.             MENUITEM  "Speed 2 (10x)", IDM_Speed2
  36.             MENUITEM  "Speed 3 (100x)", IDM_Speed3
  37.             MENUITEM  "Speed 4 (1000x)", IDM_Speed4
  38.             MENUITEM SEPARATOR
  39.             MENUITEM  "Quit", IDM_Quit
  40.         END
  41.     END
  42.